recursively isomorphic - определение. Что такое recursively isomorphic
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое recursively isomorphic - определение

DEFINING THE ELEMENTS IN A SET IN TERMS OF OTHER ELEMENTS IN THE SET
Inductive definition; Recursively define; Recursively defined
  • Four stages in the construction of a [[Koch snowflake]]. As with many other [[fractal]]s, the stages are obtained via a recursive definition.

Computably inseparable         
IN COMPUTABILITY THEORY, PAIRS OF SETS OF NATURAL NUMBERS THAT CANNOT BE "SEPARATED" WITH A RECURSIVE SET
Effectively separable; Effectively separable set; Effectively separable sets; Effectively inseparable; Effectively inseparable sets; Recursively separable sets; Recursively separable; Recursively inseparable; Recursive inseparability; Recursively inseparable sets
In computability theory, two disjoint sets of natural numbers are called computably inseparable or recursively inseparable if they cannot be "separated" with a computable set.Monk 1976, p.
Isomorphic keyboard         
MUSICAL INPUT DEVICE CONSISTING OF A 2D GRID OF BUTTONS OR KEYS ON WHICH ANY GIVEN SEQUENCE/COMBINATION OF MUSICAL INTERVALS HAS THE "SAME SHAPE" ON THE KEYBOARD WHEREVER IT OCCURS—WITHIN A KEY, ACROSS KEYS, ACROSS OCTAVES, AND ACROSS TUNINGS
Isomorphic keyboards; Tuning invariance; Tuning-invariant; Tuning invariant
An isomorphic keyboard is a musical input device consisting of a two-dimensional grid of note-controlling elements (such as buttons or keys) on which any given sequence and/or combination of musical intervals has the "same shape" on the keyboard wherever it occurs – within a key, across keys, across octaves, and across tunings.
Koebner phenomenon         
  •  Heinrich Köbner (1838–1904)
SKIN LESION ON LINES OF TRAUMA
Koebner Phenomenon; Koebnerization; Koebner's phenomenon; Isomorphic Koebner phenomenon; Köbner; Koebner; Koebnerize; Koebnerized; Koebnerizing; Köbnerization; Köbnerizing; Köbnerized; Köbnerize; Köbner phenomenon
The Koebner phenomenon or Köbner phenomenon (, ), also called the Koebner response or the isomorphic response, attributed to Heinrich Köbner, is the appearance of skin lesions on lines of trauma.Various grammatical forms of "Koebner phenomenon" include: "Koebnerization", and "to Koebnerize".

Википедия

Recursive definition

In mathematics and computer science, a recursive definition, or inductive definition, is used to define the elements in a set in terms of other elements in the set (Aczel 1977:740ff). Some examples of recursively-definable objects include factorials, natural numbers, Fibonacci numbers, and the Cantor ternary set.

A recursive definition of a function defines values of the function for some inputs in terms of the values of the same function for other (usually smaller) inputs. For example, the factorial function n! is defined by the rules

0 ! = 1. ( n + 1 ) ! = ( n + 1 ) n ! . {\displaystyle {\begin{aligned}&0!=1.\\&(n+1)!=(n+1)\cdot n!.\end{aligned}}}

This definition is valid for each natural number n, because the recursion eventually reaches the base case of 0. The definition may also be thought of as giving a procedure for computing the value of the function n!, starting from n = 0 and proceeding onwards with n = 1, 2, 3 etc.

The recursion theorem states that such a definition indeed defines a function that is unique. The proof uses mathematical induction.

An inductive definition of a set describes the elements in a set in terms of other elements in the set. For example, one definition of the set N {\displaystyle \mathbb {N} } of natural numbers is:

  1. 1 is in N . {\displaystyle \mathbb {N} .}
  2. If an element n is in N {\displaystyle \mathbb {N} } then n + 1 is in N . {\displaystyle \mathbb {N} .}
  3. N {\displaystyle \mathbb {N} } is the intersection of all sets satisfying (1) and (2).

There are many sets that satisfy (1) and (2) – for example, the set {1, 1.649, 2, 2.649, 3, 3.649, …} satisfies the definition. However, condition (3) specifies the set of natural numbers by removing the sets with extraneous members. Note that this definition assumes that N {\displaystyle \mathbb {N} } is contained in a larger set (such as the set of real numbers) — in which the operation + is defined.

Properties of recursively defined functions and sets can often be proved by an induction principle that follows the recursive definition. For example, the definition of the natural numbers presented here directly implies the principle of mathematical induction for natural numbers: if a property holds of the natural number 0 (or 1), and the property holds of n + 1 whenever it holds of n, then the property holds of all natural numbers (Aczel 1977:742).